home *** CD-ROM | disk | FTP | other *** search
Text File | 1987-01-06 | 756 b | 42 lines | [TEXT/EDIT] |
- // MiscMgr.h
- // Scrap and Desk Mgr defs
- // © Copyright 1984 Consulair Corp, All Rights Reserved.
- // Portions © Copyright Apple Computer, Inc: 1982, 1983, 1984
- // Stanford University, SUMEX project: 1984
-
- // Requires nothing
-
- #define MiscMgrLoaded
-
- // for Desk Manager
-
- #define undoCmd 0
- #define cutCmd 2
- #define copyCmd 3
- #define pasteCmd 4
- #define clearCmd 5
-
- // for Scrap Manager
-
- #define noTypeErr -102
-
- // for Scrap Manager
-
- struct __SC
- {
- long scrapSize;
- Handle scrapHandle;
- short scrapCount;
- short scrapState;
- char *scrapName;
- };
-
- #define ScrapStuff struct __SC
-
- // Functions returning other then integer
-
- #define InfoScrap (ScrapStuff *)InfoScrap
-
-
-
-